home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / wb / DosMan121.lha / man / LoadWB < prev    next >
Text File  |  1995-05-06  |  3KB  |  97 lines

  1.  
  2.  
  3.  
  4.               LoadWB (V1.3, 2.X, 3.X in C:)
  5.  
  6.  
  7.  
  8.      NAME
  9.             LoadWb -- To start the the WorkBench.
  10.  
  11.      SYNOPSIS
  12.           1.x:
  13.           LoadWB DELAY -DEBUG          
  14.  
  15.           2.x/3.X:
  16.           LoadWB DELAY -DEBUG CLEANUP NEWPATH
  17.  
  18.      DESCRIPTION
  19.  
  20.             Normally it is found in your statup-sequence so that 
  21.         your Workbench will be loaded when you start your Amiga. 
  22.         The Workbench will set and keep track of all search paths 
  23.         in effect as well as set the paths for each CLI or Shell 
  24.         started from a Workbench icon.
  25.  
  26.             Under 1.x the Workbench will reinitialize whenever 
  27.         you issue the LoadWB command. Under 2.x/3.x the Workbench 
  28.         is reinit- ialized after selecting 'Update All' from the 
  29.         Workbench menu. If you run LoadWB after it was already 
  30.         loaded under 2.x/3.x then you will get an error message 
  31.         saying that the Workbench is already loaded.          
  32.  
  33.        KEYWORDS
  34.  
  35.           DELAY
  36.             This makes a three second pause before the program is 
  37.         loaded.  This lets all the disk activity to stop before 
  38.         going onto the next program in your startup-sequence to 
  39.         start. If there is not a pause, then both commands will 
  40.         try to access the floppy disk, this causes your floppy 
  41.         drive to make a thrashing noise and slows down you disk 
  42.         access tremendously.
  43.             
  44.  
  45.           -DEBUG
  46.             This adds a brand new menu item to your Workbench bar 
  47.         which is not normally displayed. There are two items on 
  48.         this menu.  Debug (called ROMWack on 2.x/3.x) and 
  49.         Flushlibs. Debug (ROMWack) loads the ROMWACK debugger. 
  50.         This is a developer's tool which communicates to your 
  51.         Amiga via a 9600-baud terminal connection to the serial 
  52.         port. If this terminal is not connected, your Amiga will 
  53.         appear to lock up, since nothing will work until the 
  54.         remote terminal sends commands. Flushlibs lets the 
  55.         Workbench flush out all the libraries from memory that 
  56.         are not in use.  This frees up a good deal of resources. 
  57.         This is useful for the programmer to check if his program 
  58.         exited cleanly and freed all memory that they allocated.
  59.  
  60.             1.x ONLY: DELAY or -DEBUG may be used, but not at the 
  61.         same time.
  62.  
  63.  
  64.           CLEANUP
  65.             2.x/3.x Only: This performs a 'CleanUp' of the 
  66.         Workbench window, making all your icons all neat and 
  67.         orderly. This may also be done via the Window/CleanUp 
  68.         while having the Workbench screen activated.
  69.  
  70.          NEWPATH
  71.             2.x/3.x Only: This lets you change the path that the 
  72.         Workbench uses. The Workbench usually remembers the CLI 
  73.         or Shell path that issued the LoadWB command. This path 
  74.         is automatically assigned to any Shell or CLI started 
  75.         from an icon. This path can be changed by using the 
  76.         NEWPATH keyword. The Workbench will then use the path 
  77.         associated with the Shell window from which the command 
  78.         was issued.
  79.  
  80.  
  81.     EXAMPLES
  82.  
  83.             1. Load the Workbench and close the CLI:
  84.  
  85.             LOADWB DELAY
  86.             ENDCLI >NIL:
  87.  
  88.             2. Load the Workbench with the DEBUG menu activated:
  89.  
  90.             LOADWB -DEBUG
  91.  
  92.             3. Add the SYS:File directory to the path that the 
  93.         Workbench assigns to new Shell windows opened from icon:
  94.  
  95.             PATH SYS:File ADD
  96.             LOADWB NEWPATH
  97.